home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1999 July: Mac OS SDK / Dev.CD Jul 99 SDK1.toast / Development Kits / Mac OS / Interfaces&Libraries / Universal / Interfaces / CIncludes / Windows.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-08-17  |  1.0 KB  |  42 lines  |  [TEXT/MPS ]

  1. /*
  2.      File:        Windows.h
  3.  
  4.      Contains:    Window Manager Interfaces.
  5.  
  6.      Version:    Technology:    System 7.5
  7.                  Release:    Universal Interfaces 3.2
  8.  
  9.      Copyright:    © 1984-1998 by Apple Computer, Inc., all rights reserved
  10.  
  11.      Bugs?:        For bug reports, consult the following page on
  12.                  the World Wide Web:
  13.  
  14.                      http://developer.apple.com/bugreporter/
  15.  
  16. */
  17. /*
  18.     NOTE
  19.     
  20.     The file Windows.h has been renamed to "MacWindows.h" to prevent a collision
  21.     with the Microsoft Windows(tm) header file "Windows.h".  MacOS only developers may 
  22.     continue to use #include <Windows.h>.  Developers doing cross-platform work where 
  23.     Windows.h also exists should change their sources to use #include <MacWindows.h>
  24. */
  25.  
  26. #ifndef __CONDITIONALMACROS__
  27. #include <ConditionalMacros.h>
  28. #endif
  29.  
  30. #if TARGET_OS_MAC
  31. #ifndef __MACWINDOWS__
  32. #include <MacWindows.h>
  33. #endif
  34. #else
  35. /*
  36.     If you get here, your development environment is messed up.
  37.     This file is for MacOS development only.
  38. */
  39. #error This file (Windows.h) is for developing MacOS software only!
  40. #endif  /* TARGET_OS_MAC */
  41.  
  42.